home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / IBMCURSR.HLP < prev    next >
Text File  |  1987-12-22  |  1KB  |  44 lines

  1. \ IBMCURSR      IBM Specific display       Enhancements by Tom Zimmer
  2.  
  3.  
  4. IBM-AT          ( col row -- )
  5.         Move to the COL and ROW specified on the IBM display screen.
  6.         This is done using a BIOS level interupt. This word is normally
  7.         the defered function of AT, you should use AT for portability.
  8.  
  9. IBM-DARK        ( -- )
  10.         Clear the screen of the IBM, and place the cursor in the upper
  11.         left  hand corner. This is the defered function of DARK. Use
  12.         DARK for portability.
  13.  
  14. IBM--LINE       ( -- )
  15.         Delete the current line on the IBM display, causes all lines
  16.         lower on the screen to scroll up. This is the defered function
  17.         of -LINE. Use -LINE for portability.
  18.  
  19. >IBM            ( -- )
  20.         Select the IBM display as the default display.
  21.  
  22. SET-CURSOR      ( N1 --- )
  23.         Set the cursor shape to the mask value n1.
  24.  
  25. GET-CURSOR      ( --- SHAPE )
  26.         Get the cursor shape mask SHAPE.
  27.  
  28. CURSOR-OFF      ( --- )
  29.         Turn off the cursor.
  30.  
  31. CURSOR-ON       ( --- )
  32.         Turn the cursor back on.
  33.  
  34. NORM-CURSOR     ( --- )
  35.         Set the cursor to the normal underline shape.
  36.  
  37. BIG-CURSOR      ( --- )
  38.         Set the cursor to a block cursor.
  39.  
  40. MED-CURSOR      ( --- )
  41.         set the cursor to a thick cursor, not line, and not block
  42.         sort of double thick.
  43.  
  44.